PureData CEAMMC library web documentation
available since version: 0.6
@value
Get/set list contents
type: list
@default
Get/set default output value if element was not found
type: atom
default: None
@method
Get/set methods of processing of negative/invalid indexes
type: symbol
enum: rel, clip, fold, wrap
default: rel
@rel
Get/set alias to @method rel. Negative index means position from the end of the list
type: alias
@clip
Get/set alias to @method clip. If index < 0 - return first element. If index greater or
equal list size - return last element
type: alias
@fold
Get/set alias to @method fold. In range [0, LIST_SIZE) ordinal elements are returned.
[LIST_SIZE, 2*LIST_SIZE) - returned in negative order etc.
type: alias
@wrap
Get/set alias to @method wrap. In range [0, LIST_SIZE) ordinal elements are returned.
Other indexes are wrapped by modulo division.
type: alias
See also: [list.at]
Authors: Serge Poltavsky
License: GPL3 or later